home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
A.C.E. 3
/
ACE CD 3.iso
/
files
/
utils
/
asimcdfs.dms
/
in.adf
/
arexx_samples
/
asimtunes
/
get_track_title.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1994-08-01
|
325 b
|
20 lines
/* This example will demonstrate the use of the get_track_title command
in AsimTunes.
(C)1993 Asimware Innovations */
options results
address "AsimTunes_ARexx"
get_track_title
if rc ~= 0 then do
say 'Failed with 'rc'.'
exit
end
say 'Current Track Title: ' result
exit